home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 5791-.end / dmg-6260 / articles / snippets.doc < prev    next >
Text File  |  1993-07-02  |  2KB  |  83 lines

  1.                                  SNIPPETS
  2.                                 ~~~~~~~~~~
  3.  
  4. Here is just a list of  trivial  routines  that MAY come in handy ONCE,
  5. and then be of no use whatsoever  (you could call this document a disk-
  6. filler!)
  7.  
  8. JOYSTICK POSITIONS
  9.  
  10.    5  1  9
  11.     \ | /
  12.      \|/
  13.   4---0---8
  14.      /|\
  15.     / | \
  16.    6  2  10
  17.  
  18. The easy way to remember is this:
  19.  
  20. UP (1)  DOWN (2)  LEFT (4)  RIGHT (8)
  21. Diagonally up-left = UP+LEFT = 1+4 = 5
  22. Diagonally down-right = DOWN+RIGHT = 2+8 = 10
  23.  
  24.  
  25. SET PAINT
  26.  
  27. Syntax: SET PAINT Type,Pattern,Border
  28.  
  29. Type: 0=no fill                Pattern=from 1 to either 12 or 24
  30.       1=normal
  31.       2=dotted (24 types)      Border=0 or 1 (no or yes)
  32.       3=lined (12 types)
  33.       4=pattern (doesn't work!)
  34.  
  35.  
  36. SET LINE
  37.  
  38. Syntax: SET LINE Mask,Thickness,Startpoint,Endpoint
  39.  
  40. Mask = 16-bit binary number
  41. Thickness = 1 to 40
  42. Startpoint and Endpoint = Type of end:  0 = squared
  43.                                         1 = arrowed
  44.                                         2 = rounded
  45.  
  46.  
  47. LASER-BUZZ SOUND
  48.  
  49. volume 16 : envel 8,100 : play 1,32,0 : play 2,16,0 : play 3,24,0
  50.  
  51. This  produces  a  wierd  laser  sound.  Try  messing  about  with  the
  52. parameters, or substitute these:
  53.  
  54. envel 8,[100/200/80/110/300/225/25/250/140/50]
  55. play 1,[64/8/56/4/20/16/80/0/24],0
  56. play 2,[8/80/16/96/3/30/70/50/38],0
  57. play 3,[40/64/48/12/32/84/4/75/96/47],0
  58.  
  59.  
  60. BITPLANES
  61.  
  62. Colour  4 3 2 1
  63. ---------------
  64.   0     0 0 0 0
  65.   1     0 0 0 1
  66.   2     0 0 1 0
  67.   3     0 0 1 1
  68.   4     0 1 0 0
  69.   5     0 1 0 1
  70.   6     0 1 1 0
  71.   7     0 1 1 1
  72.   8     1 0 0 0
  73.   9     1 0 0 1
  74.   10    1 0 1 0
  75.   11    1 0 1 1
  76.   12    1 1 0 0
  77.   13    1 1 0 1
  78.   14    1 1 1 0
  79.   15    1 1 1 1
  80.  
  81.  
  82. Article: BLACK EAGLE 2/7/93
  83.